<listbox> : Macro Selection Box

This command displays list of macros a user can choose from. The selected macro is executed and the control is returned to the calling macro again.  If user clicks "Cancel" button the _vCanceled system variable is set to 1 (otherwise it is 0) to allow macro designer to distinguish between situations when OK or Cancel button was clicked.

Syntax: 

<listbox>("WinTitle", "Macro1-Name", "Macro1-Description, "Macro2-Name", "Macro2-Description"...)

WinTitle
Title of the window that appears.

Macro1-Name
Name of the macro to run (first item in the selection box).

Macro1-Description
Description of the macro to run (first item in the selection box).

Macro2-Name
Name of the macro to run (second item in the selection box).

Macro2-Description
Description of the macro to run (second item in the selection box).

Example: 

<#> This macro shows you how to use <listbox> command
<#>
<cmds>
<listbox>("Select your option","_item1","1. Item","_item2","2. Item","_item3","3. Item")